home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / cmln0885.arc / CROSST6.LTG < prev    next >
Text File  |  1986-02-27  |  768b  |  25 lines

  1. Crossthoughts Listingá 6.
  2.  
  3.  
  4. PP╠ codσ fo≥ modifieΣ, least-frequently-useΣ (MLFU⌐ pagσ ì
  5. replacemen⌠ function
  6.  
  7. FUNCTION Selected_Page() return integer
  8.  
  9. -- Critical_Time is set as a criterion for giving recently read 
  10.    pages a second chance for staying.  It must be systematically
  11.    updated by other program segments.
  12.  
  13. BEGIN
  14.     IF Found 
  15.     THEN  Increment frequency of RAM-resident page
  16.         return ()
  17.     ELSE
  18.         Starting with first table entry search for entry that is not
  19.             too recent.
  20.         Search for table entry with least frequency value, skipping
  21.             recent entries.
  22.         return( Index pointing to entry with least frequency)
  23.     END IF
  24. END Selected_Page
  25.